-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
39 lines (36 loc) · 1.23 KB
/
setup.py
File metadata and controls
39 lines (36 loc) · 1.23 KB
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
from setuptools import find_packages, setup
#with open("README.rst", "r") as fh:
# long_description = fh.read()
# Get admin.
admin = {}
with open("hvec_support/admin.py") as fp:
exec(fp.read(), admin)
setup(
name = 'hvec_support',
version = admin['__version__'],
author = admin['__author__'],
author_email = admin['__author_email__'],
description = 'Python package boosting conultancy work '
'with Python, sqlite and excel.',
#long_description=long_description,
license='MIT',
classifiers=[
'Development Status :: 5 - Stable',
'Intended Audience :: Science/Research',
'Intended Audience :: Other Audience',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.10'
'Programming Language :: SQL',
'Topic :: Scientific/Engineering'
],
platforms='Windows',
install_requires=[ 'matplotlib'
, 'seaborn'
, 'pandas'
, 'openpyxl'
, 'geopandas'
, 'contextily'
, 'requests'
, 'bs4'],
packages=find_packages(exclude=[]),
)