forked from emdb-empiar/empiar-depositor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
39 lines (36 loc) · 1.28 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
# -*- coding: utf-8 -*-
# setup.py
from setuptools import setup, find_packages
from codecs import open
from os import path
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='empiar-depositor', # This is the name of your PyPI-package.
version='1.6b3', # Update the version number for new releases
packages=find_packages(),
author="Andrii Iudin",
author_email="[email protected], [email protected]",
description="Script for depositing the data into EMPIAR using EMPIAR API",
long_description=long_description,
license="Apache License",
keywords="EMPIAR, deposition, microscopy",
install_requires=["requests"],
classifiers=[
# maturity
'Development Status :: 4 - Beta',
# environment
'Environment :: Console',
# audience
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
# license
'License :: OSI Approved :: Apache Software License',
# python version
'Programming Language :: Python :: 2.7',
],
entry_points = {
'console_scripts': ['empiar-depositor = empiar_depositor.empiar_depositor:main'],
}
)