-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
33 lines (30 loc) · 1.04 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
"""
Setup the package.
"""
from setuptools import find_packages, setup
DESCRIPTION = 'Python design kit: ' \
'interfaces, declared exception throws, ' \
'class members accessibility levels (private and protected methods for humans).'
with open('README.md', 'r') as read_me:
long_description = read_me.read()
setup(
version='0.3.1',
name='accessify',
description=DESCRIPTION,
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/dmytrostriletskyi/accessify',
license='MIT',
author='Dmytro Striletskyi',
author_email='dmytro.striletskyi@gmail.com',
packages=find_packages(),
classifiers=[
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'License :: OSI Approved :: MIT License',
],
)