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 10
10
long_description = f .read ()
11
11
12
12
setup (
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 ,
17
17
# The project's main homepage.
18
18
url = 'https://github.com/OmkarPathak/pygorithms' ,
19
19
# Author details
20
- author = 'Omkar Pathak' ,
21
- author_email = '[email protected] ' ,
20
+ author = 'Omkar Pathak' ,
21
+
22
22
# Choose your license
23
- license = 'MIT' ,
23
+ license = 'MIT' ,
24
24
# See https://pypi.python.org/pypi?%3Aaction=list_classifiers
25
- classifiers = [
25
+ classifiers = [
26
26
# Indicate who your project is intended for
27
27
'Intended Audience :: Developers' ,
28
28
'Topic :: Software Development :: Libraries' ,
38
38
'Programming Language :: Python :: 3.4' ,
39
39
'Programming Language :: Python :: 3.5' ,
40
40
],
41
- packages = find_packages ()
41
+ packages = find_packages ()
42
42
)
You can’t perform that action at this time.
0 commit comments