-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
41 lines (35 loc) · 1.1 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
from setuptools import setup
with open("README") as f:
readme = f.read()
with open(os.path.join(os.path.dirname(__file__), 'requirements.txt')) as f:
required = f.read().splitlines()
with open(os.path.join(os.path.dirname(__file__), 'test_requirements.txt')) as f:
test_required = f.read().splitlines() + required
setup(
name='asyncio_hn',
version='0.4.0',
description=" Simple asyncio wrapper to download hackernews",
long_description=readme + '\n',
author="Itiel Shwartz",
author_email='[email protected]',
url='https://github.com/itielshwartz/asyncio-hn',
packages=[
'asyncio_hn',
],
include_package_data=True,
install_requires=required,
license="MIT license",
zip_safe=False,
keywords=['asyncio', 'aiohttp', 'hackernews'],
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python :: 3.6',
],
test_suite='tests',
tests_require=test_required,
)