-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
47 lines (35 loc) · 1.25 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
40
41
42
43
44
45
# -*- coding: utf-8 -*-
"""
Created on Wed May 15 12:16:49 2019
@author: ciaran
"""
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
from setuptools.command.install import install
from io import open
with open('README.rst', encoding='utf-8') as f:
long_description = f.read()
descript = ('Utilities for classifying pointclouds using machine learning')
setup(
name="pointutils",
version="0.1",
packages=find_packages(),
include_package_data=True,# {
# If any package contains *.txt or *.rst files, include them:
# And include any *.msg files found in the 'hello' package, too:
#},
classifiers=[
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering :: GIS',
'Topic :: Utilities'],
# metadata for upload to PyPI
# zip_safe = True,
author="Ciaran Robb",
description=descript,
long_description=long_description,
license='GPLv3+',
url="https://github.com/Ciaran1981/pointutils", # project home page, if any
download_url="https://github.com/Ciaran1981/pointutils"
# could also include long_description, download_url, classifiers, etc.
)