-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·28 lines (25 loc) · 902 Bytes
/
setup.py
File metadata and controls
executable file
·28 lines (25 loc) · 902 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
#!/usr/bin/env python
from setuptools import setup
version = "0.1"
setup(
name="fsmonitor",
version=version,
description="Filesystem monitoring",
long_description=open('README.rst').read(),
long_description_content_type="text/x-rst",
author="Luke McCarthy",
license="MIT",
url="http://github.com/ljmccarthy/fsmonitor",
download_url="https://pypi.org/project/fsmonitor/%s/" % version,
project_urls={
'Homepage': 'http://github.com/ljmccarthy/fsmonitor',
'Download': 'https://pypi.org/project/fsmonitor/%s/' % version,
'Issue tracker': 'http://github.com/ljmccarthy/fsmonitor/issues',
},
keywords=["filesystem", "monitor"],
platforms="Any",
install_requires=["pypiwin32; sys_platform=='win32'"],
packages=["fsmonitor"],
python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*',
)