-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
24 lines (23 loc) · 807 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
#!/usr/bin/env python
from setuptools import setup
setup(
name='python_project',
version='0.0.1',
author='Wasim Akram Khan',
keywords='open-source, python, project_setup',
description='A sample setup for a python project.',
packages=['python_project', 'usage', 'benchmark', 'tests'],
license='MIT License ',
long_description=open('readme.md').read(),
long_description_content_type='text/markdown',
project_urls={
"Source Code": "https://github.com/wasimusu/python_project",
},
url="https://github.com/wasimusu/python_project",
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.7",
]
)