-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (28 loc) · 1.09 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
from setuptools import setup, find_packages
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: MIT License',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Programming Language :: Python :: 3',
'Topic :: Communications :: Email',
'Topic :: Software Development :: Bug Tracking',
]
setup(
name='pycomplexity',
version='0.0.1',
description='Measure complexity of your algorithm',
long_description=open('README.md').read() + '\n\n' + open('CHANGELOG.md').read(),
url='',
author='Hagai',
author_email='[email protected]',
license='MIT',
classifiers=classifiers,
keywords=["asymptotic notation", "measure", "algorithm", "complexity", "time complexity", "bigo", "big-o", "bigomega", "big-omega", "bigtheta", "big-theta"],
packages=find_packages(),
requires=[''],
)