-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (24 loc) · 773 Bytes
/
setup.py
File metadata and controls
26 lines (24 loc) · 773 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
# -*- coding: utf-8 -*-
import os
from setuptools import setup
# Get contents of README for long description
readme_file = os.path.join(os.path.dirname(__file__), 'README.md')
with open(readme_file) as f:
README = f.read()
setup(
name="bng",
version="1.0.5",
description=("Convert between BNG grid refs (e.g. NT123456) and "
"OSGB36 (EPSG:27700) coords"),
long_description=README,
long_description_content_type="text/markdown",
url="https://github.com/volcan01010/bng",
author="Dr John A Stevenson",
author_email="johnalexanderstevenson@gmail.com",
license="GPLv3.0",
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 2.7",
],
py_modules=["bng"]
)