-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (29 loc) · 963 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
34
"""Sets up the package."""
import os.path
import setuptools
def read_long_description() -> str:
"""Returns the content of README.md file."""
cwd = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(cwd, 'README.md')) as f:
return f.read()
setuptools.setup(
name='pynaive',
version='0.2.0',
description='A toy project to demonstrate ' \
'Python development environment and toolchain',
long_description=read_long_description(),
long_description_content_type='text/markdown',
url='https://github.com/ktrushin/pynaive',
author='Konstantin Trushin',
author_email='[email protected]',
license='MIT',
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
],
packages=['naive'],
include_package_data=True,
install_requires=[],
entry_points={}
)