-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
29 lines (27 loc) · 1.04 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
#!/usr/bin/env python
from setuptools import find_packages, setup
packages = find_packages()
with open("README.md", "r") as fh:
long_description = fh.read()
VERSION = "2.1.4"
setup(name='bqmail',
version=VERSION,
author='Mijian Xu',
author_email='[email protected]',
url='https://github.com/xumi1993/bqmail',
long_description=long_description,
long_description_content_type="text/markdown",
license='MIT',
packages=find_packages(),
package_dir={'bqmail': 'bqmail'},
package_data={'': ['data/*']},
install_requires=['obspy', 'pandas'],
entry_points={'console_scripts': ['get_stations=bqmail.query:get_stations',
'get_events=bqmail.query:get_events']},
include_package_data=True,
zip_safe=False,
classifiers=['Programming Language :: Python',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11']
)