-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (32 loc) · 872 Bytes
/
setup.py
File metadata and controls
35 lines (32 loc) · 872 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
32
33
34
35
#!/usr/bin/python
# -*- coding: utf-8 -*-
import os
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name = "syntaxdb",
version = "0.1.2",
author = "lhat-messorem",
author_email = "lhat.messorem@gmail.com",
description = ("A small Python library for accessing the SyntaxDB API"),
license = "MIT",
keywords = "syntaxdb",
url = "https://github.com/lhat-messorem/syntax_db",
packages=['syntaxdb'],
long_description=read('README.rst'),
classifiers=[
"Intended Audience :: Developers",
"Programming Language :: Python",
"Topic :: Utilities",
],
install_requires=[
"requests",
],
package_data={
"": ["README.md", "LICENSE.md"]
}
)