-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (26 loc) · 751 Bytes
/
setup.py
File metadata and controls
30 lines (26 loc) · 751 Bytes
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
#! /usr/bin/env python
import rdmlpython as rdml
from setuptools import setup
vers = rdml.get_rdml_lib_version()
print("Current version: " + vers)
setup(
name='rdmlpython',
version=vers,
author='Andreas Untergasser',
author_email='andreas@untergasser.de',
packages=['rdmlpython'],
url='https://github.com/RDML-consortium/rdmlpython',
license='MIT',
description='A package to read and edit RDML files.',
long_description=open('README.txt').read(),
install_requires=[
"lxml >= 4.2.1",
"numpy >= 1.17.2",
"scipy >= 1.3.1",
"matplotlib >= 3.5.1",
],
include_package_data=True,
entry_points = {
'console_scripts': ['rdmlpython=rdmlpython.rdml:main'],
},
)