forked from Billingegroup/pydatarecognition
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
56 lines (48 loc) · 1.56 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
48
49
50
51
52
53
54
55
56
#!/usr/bin/env python
# coding=utf-8
"""The pydatarecognition installer."""
import sys
try:
from setuptools import setup
from setuptools.command.develop import develop
HAVE_SETUPTOOLS = True
except ImportError:
from distutils.core import setup
HAVE_SETUPTOOLS = False
def main():
try:
if "--name" not in sys.argv:
print(logo)
except UnicodeEncodeError:
pass
skw = dict(
name="pydatarecognition",
description="A structured data content management system for published "
"scientific papers",
long_description="A collaboration between the International Union of "
"Crystallography and the Billinge group at Columbia "
"University in the City of New York, USA.",
license="BSD-3-clause",
version='v1.0.0',
author="Martin Karlsen, Berrak Ozer, Simon J. L. Billinge",
maintainer="Simon Billinge",
author_email="[email protected]",
url="https://github.com/billingegroup/pydatarecognition",
platforms="Cross Platform",
classifiers=["Programming Language :: Python :: 3"],
packages=["pydatarecognition"],
package_dir={"pydatarecognition": "pydatarecognition"},
package_data={
"pydatarecognition": [
]
},
scripts=["scripts/pydatarecognition","scripts/pydr"],
zip_safe=False,
)
if HAVE_SETUPTOOLS:
skw["setup_requires"] = []
setup(**skw)
logo = """
"""
if __name__ == "__main__":
main()