-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
37 lines (32 loc) · 857 Bytes
/
Copy pathsetup.py
File metadata and controls
37 lines (32 loc) · 857 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
36
import os
from setuptools import setup, find_namespace_packages
version="0.0.2"
if "BUILD_NUM" in os.environ.keys():
version += "." + os.environ["BUILD_NUM"]
setup(
name = "pyastbuilder",
version = version,
packages=find_namespace_packages(where='src'),
package_dir = {'' : 'src'},
author = "Matthew Ballance",
author_email = "matt.ballance@gmail.com",
description = ("Utility for generating AST classes from a yaml description"),
long_description = """
Utility for generating AST classes from a yaml description
""",
license = "Apache 2.0",
keywords = ["Parsing"],
url = "https://github.com/mballance/pyastbuilder",
entry_points={
'console_scripts': [
'astbuilder = astbuilder.__main__:main'
]
},
setup_requires=[
'setuptools_scm'
],
install_requires=[
'pyyaml',
'toposort'
],
)