Skip to content

Commit 5bd3d31

Browse files
committed
Added updated setup.py, MANIFEST file and setup.cfg
1 parent 75b755a commit 5bd3d31

File tree

3 files changed

+24
-9
lines changed

3 files changed

+24
-9
lines changed

MANIFEST.in

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
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

setup.cfg

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
[bdist_wheel]
2+
universal = 1
3+
4+
[wheel]
5+
universal = 1

setup.py

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -10,19 +10,19 @@
1010
long_description = f.read()
1111

1212
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,
1717
# The project's main homepage.
1818
url='https://github.com/OmkarPathak/pygorithms',
1919
# Author details
20-
author = 'Omkar Pathak',
21-
author_email = '[email protected]',
20+
author='Omkar Pathak',
21+
author_email='[email protected]',
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',
@@ -38,5 +38,5 @@
3838
'Programming Language :: Python :: 3.4',
3939
'Programming Language :: Python :: 3.5',
4040
],
41-
packages = find_packages()
41+
packages=find_packages()
4242
)

0 commit comments

Comments
 (0)