File tree Expand file tree Collapse file tree 3 files changed +24
-9
lines changed Expand file tree Collapse file tree 3 files changed +24
-9
lines changed Original file line number Diff line number Diff line change 1+ include LICENSE
2+ include MANIFEST.in
3+ include README.rst
4+ include requirements.txt
5+
6+ recursive-include pygorithm *
7+
8+ recursive-exclude * __pycache__
9+ recursive-exclude * *.py[co]
10+ recursive-exclude * *.orig
Original file line number Diff line number Diff line change 1+ [bdist_wheel]
2+ universal = 1
3+
4+ [wheel]
5+ universal = 1
Original file line number Diff line number Diff line change 1010 long_description = f .read ()
1111
1212setup (
13- name = 'pygorithm' ,
14- version = '0.1.dev2 ' ,
15- description = 'A Python algorithms module for learning' ,
16- long_description = long_description ,
13+ name = 'pygorithm' ,
14+ version = '0.1' ,
15+ description = 'A Python algorithms module for learning' ,
16+ long_description = long_description ,
1717 # The project's main homepage.
1818 url = 'https://github.com/OmkarPathak/pygorithms' ,
1919 # Author details
20- author = 'Omkar Pathak' ,
21- author_email = 'omkarpathak27@gmail.com' ,
20+ author = 'Omkar Pathak' ,
21+ author_email = 'omkarpathak27@gmail.com' ,
2222 # Choose your license
23- license = 'MIT' ,
23+ license = 'MIT' ,
2424 # See https://pypi.python.org/pypi?%3Aaction=list_classifiers
25- classifiers = [
25+ classifiers = [
2626 # Indicate who your project is intended for
2727 'Intended Audience :: Developers' ,
2828 'Topic :: Software Development :: Libraries' ,
3838 'Programming Language :: Python :: 3.4' ,
3939 'Programming Language :: Python :: 3.5' ,
4040 ],
41- packages = find_packages ()
41+ packages = find_packages ()
4242)
You can’t perform that action at this time.
0 commit comments