-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
46 lines (35 loc) · 1.19 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
42
43
44
45
46
from io import open
from setuptools import setup
version = '0.0.9'
name = 'nalog'
with open('README.md', encoding='utf-8') as f:
long_description = f.read()
setup(
name=name,
version=version,
author='TimNekk',
author_email='[email protected]',
description=(
'Moy Nalog API wrapper'
),
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/TimNekk/nalog',
# download_url='',
license='Apache License, Version 2.0, see LICENSE file',
packages=[name],
install_requires=['pycurl==7.43.0.5'],
classifiers=[
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: Developers',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: Implementation :: PyPy',
'Programming Language :: Python :: Implementation :: CPython',
]
)