Skip to content

Commit

Permalink
refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
strongSoda committed Aug 25, 2019
1 parent aef7fd7 commit 0734f30
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 26 deletions.
1 change: 0 additions & 1 deletion gopy/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +0,0 @@
name = "gopy"
55 changes: 30 additions & 25 deletions setup.py
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)

0 comments on commit 0734f30

Please sign in to comment.