forked from dtcooper/python-fitparse
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (24 loc) · 788 Bytes
/
Copy pathsetup.py
File metadata and controls
29 lines (24 loc) · 788 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
# coding: utf-8
from distutils.core import setup
try:
from setuptools import setup, find_packages, Command
except ImportError:
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages, Command
setup(
name = "python-fitparse",
version = "0.1",
# scripts = ['scripts/generate_profile.py', 'scripts/sample_program.py'],
zip_safe = True,
packages = find_packages(),
include_package_data = True,
# metadata for upload to PyPI
# author = "",
# author_email = "",
description = "Garmin FIT file parser implementation",
# license = "",
# keywords = "",
url = "https://github.com/dtcooper/python-fitparse",
# could also include long_description, download_url, classifiers, etc.
)