-
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
Srinivas Devaki
committed
Sep 22, 2016
1 parent
c023bd5
commit bbfed56
Showing
1 changed file
with
40 additions
and
0 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 |
---|---|---|
@@ -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) |