-
Notifications
You must be signed in to change notification settings - Fork 28
/
setup.py
39 lines (35 loc) · 1.26 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
from setuptools import setup, find_packages
import os
here = os.path.abspath(os.path.dirname(__file__))
if 'VERSIONTAG' in os.environ:
version=os.environ['VERSIONTAG']
else:
with open(os.path.join(here, "archook", "VERSION")) as f:
version = f.read().strip()
with open(os.path.join(here, "README.md")) as f:
long_description = f.read()
setup(
name="archook",
version=version,
description="Locates arcpy and makes it available to the running python distribution",
long_description=long_description,
long_description_content_type="text/markdown",
keywords="ArcGIS, arcpy",
author="James Ramm",
author_email="nospam@example.com",
maintainer="Matt Wilkie",
maintainer_email="matt.wilkie@gov.yk.ca",
url="https://github.com/JamesRamm/archook",
packages=find_packages(),
include_package_data=True,
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering",
"Operating System :: Microsoft :: Windows",
],
)