Skip to content

Commit

Permalink
setup.py file structure reformated according to some popular conventi…
Browse files Browse the repository at this point in the history
…ons.
  • Loading branch information
il6 committed Jun 24, 2020
1 parent ae59e61 commit c89fa70
Showing 1 changed file with 19 additions and 7 deletions.
26 changes: 19 additions & 7 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,18 @@
from distutils.core import setup
from setuptools import setup

with open("README.md", "r") as fh:
long_description = fh.read()

base_url = 'http://github.com/atmragib/jadukor'
version = '0.0.3'

setup(name='jadukor',
version='0.2',
version=version,
description='The most powerfull module in the universe',
url='http://github.com/atmragib/jadukor',
download_url='https://github.com/atmragib/jadukor/archive/v0.2.tar.gz',
long_description=long_description,
url=base_url,
download_url='{}/archive/v{}.tar.gz'.format(base_url, version),
author='A T M Ragib Raihan',
author_email='[email protected]',
license='MIT',
Expand All @@ -19,16 +26,21 @@
classifiers=[
# Chose either "3 - Alpha", "4 - Beta" or "5 - Production/Stable" as the current state of your package
'Development Status :: 3 - Alpha',
# Define that your audience are developers
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License', # Again, pick a license
# Specify which pyhton versions that you want to support
'License :: OSI Approved :: MIT License',
"Operating System :: OS Independent",
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
],
)
python_requires='>=3.1',
# packages=find_packages(exclude=['tests', 'tests.*']),
# package_data={'simple_history': [
# 'static/js/*.js', 'templates/simple_history/*.html']},
# include_package_data=True,
# use_scm_version=True,
)

0 comments on commit c89fa70

Please sign in to comment.