-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
aef7fd7
commit 0734f30
Showing
2 changed files
with
30 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +0,0 @@ | ||
name = "gopy" | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,30 @@ | ||
import setuptools | ||
setuptools.setup( | ||
name = 'gopy', # How you named your package folder (MyLib) | ||
packages = ['gopy'], # Chose the same as "name" | ||
version = '0.4', # Start with a small number and increase it with every change you make | ||
license='MIT', # Chose a license from here: https://help.github.com/articles/licensing-a-repository | ||
description = 'Python Data Structures and Algorithms', # Give a short description about your library | ||
author = 'Imran Khan', # Type in your name | ||
author_email = 'strongsoda2@gmail.com', # Type in your E-Mail | ||
url = 'https://github.com/strongSoda/data-structures-and-algorithms', # Provide either the link to your github or to your website | ||
download_url = 'https://github.com/strongSoda/data-structures-and-algorithms/archive/v0.4.tar.gz', # I explain this later on | ||
keywords = ['data structures', 'algorithms', 'python'], # Keywords that define your package best | ||
install_requires=[ # I get to this in a second | ||
], | ||
classifiers=[ | ||
'Development Status :: 3 - Alpha', # Chose either "3 - Alpha", "4 - Beta" or "5 - Production/Stable" as the current state of your package | ||
'Intended Audience :: Developers', # Define that your audience are developers | ||
'Topic :: Software Development :: Build Tools', | ||
'License :: OSI Approved :: MIT License', # Again, pick a license | ||
'Programming Language :: Python :: 3', #Specify which pyhton versions that you want to support | ||
'Programming Language :: Python :: 3.4', | ||
'Programming Language :: Python :: 3.5', | ||
'Programming Language :: Python :: 3.6', | ||
], | ||
) | ||
import os | ||
import io | ||
import re | ||
from setuptools import find_packages, setup | ||
|
||
|
||
def long_description(): | ||
with io.open('README.md', 'r', encoding='utf-8') as f: | ||
readme = f.read() | ||
return readme | ||
|
||
|
||
setup(name='gopy', | ||
version='0.5', | ||
description='Python Data Structures and Algorithms', | ||
long_description=long_description(), | ||
long_description_content_type="text/markdown", | ||
url='https://github.com/strongSoda/data-structures-and-algorithms', | ||
download_url = 'https://github.com/strongSoda/data-structures-and-algorithms/archive/v0.5.tar.gz', | ||
author='Imran Khan', | ||
author_email="strongsoda2@gmail.com", | ||
license='MIT', | ||
packages=find_packages(), | ||
classifiers=[ | ||
'Programming Language :: Python :: 3', | ||
'Programming Language :: Python :: 3.4', | ||
'Programming Language :: Python :: 3.5', | ||
'Programming Language :: Python :: 3.6', | ||
], | ||
zip_safe=False) |