Skip to content

Commit

Permalink
Add setup.py configurations
Browse files Browse the repository at this point in the history
  • Loading branch information
NikolaySimakov committed Jul 1, 2023
1 parent 575d5ff commit 4a45b71
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,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.txt').read(),
url='',
author='Hagai',
author_email='n.simakoff@gmail.com',
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=[''],
)

0 comments on commit 4a45b71

Please sign in to comment.