Skip to content

Commit

Permalink
for pypi
Browse files Browse the repository at this point in the history
  • Loading branch information
Srinivas Devaki committed Sep 22, 2016
1 parent c023bd5 commit bbfed56
Showing 1 changed file with 40 additions and 0 deletions.
40 changes: 40 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
#!/usr/bin/env python3.5
# -*- coding: utf-8 -*-

try:
from setuptools import setup
except ImportError:
from distutils.core import setup

version = '0.0.1.alpha0'
packages = ['singlefile']
install_requires = [
'requests'
]
classifiers = [
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: Implementation :: CPython',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Utilities'
]

config = {
'description': 'import from web. share your snippets and import them from web',
'author': 'Srinivas Devaki',
'url': 'https://gitlab.com/eightnoteight/singlefile',
'download_url': 'https://gitlab.com/eightnoteight/singlefile/repository/archive.zip?ref=master',
'author_email': '[email protected]',
'version': version,
'install_requires': install_requires,
'packages': packages,
'scripts': [],
'classifiers': classifiers,
'name': 'singlefile'
}

setup(**config)

0 comments on commit bbfed56

Please sign in to comment.