forked from ndeutschmann/saft
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
48 lines (40 loc) · 1.36 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
from setuptools import setup, find_packages
import os
import re
requirements = ["numpy"]
PACKAGE = "saft"
def get_version():
"""Gets the version from the package's __init__ file
if there is some problem, let it happily fail"""
VERSIONFILE = os.path.join("src", PACKAGE, "__init__.py")
initfile_lines = open(VERSIONFILE, "rt").readlines()
VSRE = r"^__version__ = ['\"]([^'\"]*)['\"]"
for line in initfile_lines:
mo = re.search(VSRE, line, re.M)
if mo:
return mo.group(1)
this_directory = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(this_directory, "README.md"), encoding="utf-8") as f:
long_description = f.read()
setup(
name="saft",
version=get_version(),
description="SAF file Treatment",
author="M.Rossi",
author_email="[email protected]",
url="https://github.com/marcorossi5/saft.git",
package_dir={"": "src"},
packages=find_packages("src"),
zip_safe=False,
classifiers=[
"Operating System :: Unix",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Physics",
],
install_requires=requirements,
python_requires=">=3.6",
long_description=long_description,
long_description_content_type="text/markdown",
)