-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (27 loc) · 823 Bytes
/
setup.py
File metadata and controls
31 lines (27 loc) · 823 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
27
28
29
30
31
# -*- coding: utf-8 -*-
""" PySignature setup.py script """
# PySignature
from pysignature import __version__
# system
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
from os.path import join, dirname
setup(
name=__version__,
version='0.1.0',
description='My PySignature project',
author='Edgar Cabrera',
author_email='ecabrera@intelimetrica.com',
packages=['pysignature','pysignature.test'],
url='https://github.com/intelimetrica/pysignature',
long_description=open('README.md').read(),
install_requires=[''],
test_suite='pysignature.test',
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python',
],
)