forked from huonw/travis-cargo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
25 lines (23 loc) · 835 Bytes
/
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
from setuptools import setup, find_packages
CLASSIFIERS = [
'License :: OSI Approved :: Apache Software License',
'License :: OSI Approved :: MIT License',
'Topic :: Software Development :: Testing',
'Programming Language :: Other',
]
setup(
name = 'travis-cargo',
version = '0.1.15',
description = ('Manages interactions between travis and cargo/rust compilers.'),
author = 'Huon Wilson',
author_email = 'dbau.pp@gmail.com',
url = 'https://github.com/huonw/travis-cargo',
download_url = 'https://github.com/huonw/travis-cargo/tarball/0.1.15',
keywords = ['testing', 'travis', 'rust', 'cargo'],
packages = find_packages(),
py_modules = ['travis_cargo'],
entry_points = {
'console_scripts': ['travis-cargo=travis_cargo:main']
},
classifiers = CLASSIFIERS,
)