-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (29 loc) · 983 Bytes
/
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
import setuptools
def readme():
with open('README.md') as f:
return f.read()
setuptools.setup(
name='pymodule',
version='0.2-alpha',
license='GPL-3.0',
description='Python module interface',
long_description=readme(),
long_description_content_type="text/markdown",
url='https://github.com/hochshi/pymodule',
download_url=
'https://github.com/hochshi/pymodule/archive/v0.2-alpha.tar.gz',
keywords=['RHEL', 'module'],
author='Shi Hoch',
author_email='[email protected]',
packages=setuptools.find_packages(),
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: System :: Operating System',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
)