-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
48 lines (40 loc) · 1.25 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#!/usr/bin/env python
from setuptools import setup, find_packages
# To use a consistent encoding
from codecs import open
from os import path
import sys
if sys.version_info[0] < 3:
raise Exception("Requires Python 3")
VERSION='0.1.2'
here = path.abspath(path.dirname(__file__))
# Get the long description from the README file
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
with open(path.join(here, 'requirements.txt'), encoding='utf-8') as f:
requirements = f.readlines()
setup(name='bigzenodo',
version=VERSION,
description='A tool for doing big uploads to Zenodo',
long_description=long_description,
long_description_content_type='text/markdown',
classifiers=[
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Operating System :: Unix',
'Programming Language :: Python :: 3.6',
'Topic :: Scientific/Engineering',
],
url='http://github.com/jakelever/bigzenodo',
author='Jake Lever',
author_email='jake.lever@gmail.com',
license='MIT',
packages=['bigzenodo'],
install_requires=requirements,
include_package_data=True,
entry_points = {
'console_scripts': ['bigzenodo=bigzenodo.main:main'],
},
zip_safe=False,
test_suite='nose.collector',
tests_require=['nose'])