-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (25 loc) · 897 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
import setuptools
from example_pkg import __about__
with open("README.md", "r") as fh:
long_description = fh.read()
with open('LICENSE') as f:
license = f.read()
setuptools.setup(
name='example-pkg-janid', # Replace with your own username e.g example-pkg-name #TODO
version=__about__.__version__, # TODO
author='Abdellah Janid',
author_email='janid@hotmail.it', # TODO
description='A small example of package', # TODO
long_description=long_description,
long_description_content_type="text/markdown",
url='', # TODO
license=license,
packages=setuptools.find_packages(exclude=('tests*', 'docs')),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 1 - Planning",
],
python_requires='>=3.6',
)